Name :String concatenation

Symbol :CONCAT

Illustrate:

    Concatenate the strings IN1 and IN2.

Image:

Parameter:

Parameter Statement Type Description
IN1 Input STRING
Enter the string IN1
IN2 Input STRING
Enter the string IN2
OUT Output STRING
Output string

Example:

LD:

ST:



Interpretation:

parameter operandvalue
IN1TagIn1Enter a value:’abcdefg’
IN2TagIn2Enter a value:’0123’
OUTOUT_outOutput value:’abcdefg0123’
    IN1 and IN2 input string type data, and OUT outputs the concatenated string.